/* Copyright (c) 1997-2009
   Ewgenij Gawrilow, Michael Joswig (Technische Universitaet Darmstadt, Germany)
   http://www.polymake.de

   This program is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by the
   Free Software Foundation; either version 2, or (at your option) any
   later version: http://www.gnu.org/licenses/gpl.txt.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
--------------------------------------------------------------------------------
   $Project: polymake $$Id: set 9298 2009-09-02 23:10:56Z gawrilow $
*/

#ifndef _POLYMAKE_STD_SET
#define _POLYMAKE_STD_SET

#include_next <set>

#ifndef _POLYMAKE_TREE_ITERATORS_H
#  include <tree_iterators.h>
#endif

namespace pm {

template <typename K, typename Compare, typename Alloc>
struct spec_object_traits< std::set<K,Compare,Alloc> >
   : spec_object_traits<is_container> {
   static const IO_separator_kind IO_separator=IO_sep_inherit;
};

} // end namespace pm

#endif // _POLYMAKE_STD_SET

// Local Variables:
// mode:C++
// End:
